home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-25 | 794 b | 32 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWCharac.h
- /// Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWCHARAC_H
- #define FWCHARAC_H
-
- #ifndef FWSTDDEF_H
- #include "FWStdDef.h"
- #endif
-
- //========================================================================================
- // ----- Constants -----
- //========================================================================================
-
- enum {FW_kNulCharacter=0};
-
- #ifdef FW_BUILD_MAC
- const char FW_PlatformNewLineChar = '\n';
- #endif
- #ifdef FW_BUILD_WIN
- const char FW_PlatformNewLineChar = '\r';
- #endif
-
- #endif
-
-